home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00032_DragSprite.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  5.4 KB  |  208 lines

  1. --
  2. -- DragSprite
  3. --
  4.  
  5. property ancestor
  6.  
  7. -- constants:
  8. property dragTopSpriteColor  -- the spriteColor of the dragging sprite - for setup
  9. property dragUnderSpriteColor
  10. property dragTopField
  11. property hiliteInk  -- the hilite ink color for the project
  12.  
  13. property dragTopSprite  -- the spriteNumber of the dragging sprite
  14. property dragUnderSprite  -- the sprite that drags under the cursor to find intersecting sprites.
  15. property hiliteSprite  -- the sprite that will do the rollover hiliting
  16.  
  17. property hiliteList  -- a list of hilitable sprites.  They hilite when the dragger is over them.
  18. property inkList  -- a prop list of sprite ink colors, by sprite number.
  19. property void  -- never initialize this.
  20.  
  21. property underCast
  22.  
  23.  
  24. on new me
  25.   -- set constants:
  26.   set dragTopSpriteColor = 5  -- red
  27.   set dragUnderSpriteColor = 4  -- pink
  28.   set dragTopField = "dragTopField"
  29.   set hiliteInk = 4
  30.   
  31.   -- initialize the ancestor:
  32.   set ancestor = new (script "MemberAnimation")
  33.   
  34.   -- do other initializations:
  35.   setUp (me)
  36.   
  37.   set underCast = the number of member "underCursor"
  38.   
  39.   set hiliteList = []
  40.   set inkList = []
  41.   return me
  42. end
  43.  
  44.  
  45. on destruct me
  46.   if objectP (ancestor) then destruct (ancestor)
  47.   set ancestor = 0
  48. end
  49.  
  50.  
  51. on dragSprite me, spr
  52.   set originalLoc = the loc of sprite spr
  53.   set sprOffSet = originalLoc - the clickLoc  -- get offset information immediately
  54.   
  55.   puppetSprite spr, TRUE
  56.   
  57.   if dragTopSprite then 
  58.     set the memberNum of sprite dragTopSprite to the memberNum of sprite spr
  59.     set the castLibNum of sprite dragTopSprite to the castLibNum of sprite spr
  60.     set the loc of sprite dragTopSprite to the loc of sprite spr
  61.   end if
  62.   
  63.   moveOffScreen (me, spr)
  64.   
  65.   if dragUnderSprite then
  66.     puppetSprite dragUnderSprite, TRUE
  67.     --    set the member of sprite dragUnderSprite to member "underCursor"  -- too slow...?
  68.     set the castNum of sprite dragUnderSprite to underCast
  69.   end if
  70.   
  71.   doDrag (me, spr, sprOffSet) -- do the actual dragging.
  72.   
  73.   if dragTopSprite then set tmpLoc = the loc of sprite dragTopSprite
  74.   
  75.   -- this was to return the location of the drag under sprite, currently we return the sprite number itself.
  76.   --  if dragUnderSprite then set endLoc = the loc of sprite dragUnderSprite
  77.   --  else set endLoc = void
  78.   
  79.   if dragTopSprite then moveOffScreen (me, dragTopSprite)
  80.   
  81.   if dragTopSprite then inkOff (me, hiliteSprite)
  82.   
  83.   set the loc of sprite spr to tmpLoc  -- move original spr back onscreen.
  84.   
  85.   unloadCast (me)
  86.   
  87.   updateStage 
  88.   
  89.   if dragUnderSprite then return dragUnderSprite
  90.   else if the loc of sprite spr = originalLoc then return -1
  91.   else return void
  92. end
  93.  
  94.  
  95. -- drag the passed sprite, hiliting with inks.
  96.  
  97. on doDrag me, spr, sprOffSet
  98.   -- cursor [the number of member "hand", the number of member "hand mask"]
  99.   -- set tmp = []
  100.   --  if dragTopSprite then add (tmp, dragTopSprite)
  101.   --  if dragUnderSprite then add (tmp, dragUnderSprite)
  102.   --  initHandCursor ("hand", tmp)
  103.   repeat while the mouseDown
  104.     set m = mouseLoc(me)
  105.     if dragTopSprite then set the loc of sprite dragTopSprite to (m + sprOffSet)
  106.     if dragUnderSprite then set the loc of sprite dragUnderSprite to m
  107.     -- updateStage -- will this speed things up?
  108.     -- check for rollovers in the hilite list and
  109.     -- do a hilite or take it away:
  110.     checkHiliteInk (me)
  111.     updateStage
  112.   end repeat
  113.   -- cursor 0
  114. end
  115.  
  116.  
  117. -- restore the ink of a draggable to matte:
  118.  
  119. on inkOff me, spr
  120.   if the ink of sprite spr = hiliteInk then
  121.     moveOffScreen (me, spr)
  122.     set the ink of sprite spr to 8  -- was this unecessary...?
  123.   end if
  124. end
  125.  
  126.  
  127. --finally ditch the dragUnderSprite:
  128.  
  129. on hideUnderSprite me
  130.   if not dragUnderSprite then return
  131.   moveOffScreen (me, dragUnderSprite)
  132. end
  133.  
  134.  
  135. -- check the ink of the sprites under the cursor:
  136.  
  137. on checkHiliteInk me
  138.   if not dragUnderSprite then return
  139.   if not hiliteSprite then return
  140.   
  141.   moveOffScreen (me, hiliteSprite)  
  142.   
  143.   set c = count (hiliteList) 
  144.   repeat with i = c down to 1
  145.     set spr = getAt (hiliteList, i)
  146.     
  147.     if sprite dragUnderSprite intersects spr then 
  148.       set the member of sprite hiliteSprite to member the memberNum of sprite spr of castLib the castLibNum of sprite spr
  149.       --set the castLib of sprite hiliteSprite to castLib the castLibNum of sprite spr
  150.       set the loc of sprite hiliteSprite to the loc of sprite spr
  151.       set the ink of sprite hiliteSprite to hiliteInk
  152.       exit repeat
  153.     end if
  154.   end repeat
  155. end
  156.  
  157.  
  158. -- manually change the hiliteInk
  159.  
  160. on setHiliteInk me, num
  161.   set hiliteInk = num
  162. end
  163.  
  164.  
  165. on setUp me, hilites
  166.   set dragUnderSprite = 0
  167.   set dragTopSprite = 0
  168.   
  169.   repeat with i = 1 to numSprites (me)
  170.     if the scoreColor of sprite i = dragTopSpriteColor then 
  171.       set dragTopSprite = i
  172.       exit repeat
  173.     end if
  174.   end repeat
  175.   
  176.   repeat with i = 1 to numSprites (me)
  177.     if the scoreColor of sprite i = dragUnderSpriteColor then
  178.       if hiliteSprite then set dragUnderSprite = i
  179.       else set hiliteSprite = i
  180.     end if
  181.   end repeat
  182.   
  183.   -- makeField (me, dragTopField, dragTopSprite)
  184. end
  185.  
  186.  
  187. -- hilites must be a list of sprite numbers.
  188.  
  189. on initHilitePool me, hilites
  190.   if listP (hilites) then set hiliteList = hilites
  191.   setInkList (me)
  192. end
  193.  
  194.  
  195.  
  196. -- set the ink list for any sprites passed in the hiliteList.
  197.  
  198. on setInkList me
  199.   if not listP (hiliteList) then 
  200.     put "Hilite List (in DragSprite) was not initialized."
  201.     return
  202.   end if
  203.   
  204.   set inkList = [:]
  205.   repeat with spr in hiliteList
  206.     if integerP (spr) then addProp (inkList, spr, the ink of sprite spr)
  207.   end repeat
  208. end